home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d18 / tp5patch.arc / TD1PAT.ARC / FIXTURBO.1 < prev    next >
Text File  |  1991-04-28  |  465b  |  23 lines

  1. ;fix for problem with TURBO's standalone debugging option involving
  2. ;include files
  3.  
  4. ;convert EXE file to BIN file
  5. ren turbo.exe turbo.bin
  6. ;load BIN file into DEBUG
  7. debug turbo.bin
  8. ;display registers
  9. r
  10. ;assemble at ????:a41e, where ???? = cs+1000h
  11. ;e.g., if cs = 37fc, then ???? = 47fc
  12. a ????:a41e
  13. ;enter new instruction
  14. cmp si,dx
  15. ;enter blank line
  16.  
  17. ;write changes to disk
  18. w
  19. ;quit DEBUG
  20. q
  21. ;convert BIN file to EXE file
  22. ren turbo.bin turbo.exe
  23.